<ul class="lp-landingpage-menu">
   #foreach ($item in $menuItems) 
   	#if ($item.isFeatured)
         <li class="featured-item">
 
           <a href="$!{item.URI}" title="" class="subheading"><span>$!item.headline</span>#if ($svPropertyUtil.getString($item.node,'lp-icon','')!='')<svg class="lp-icon" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="/webdav/files/system/svg/lp-icons.svg#$!{svPropertyUtil.getString($item.node,'lp-icon','')}"></use></svg>#end</a>
             $!{item.description}
         </li>
      #end
   #end
   

   
   #foreach ($item in $menuItems) 
   	#if (!$item.isFeatured)
         <li>
           <a href="$!{item.URI}" title="" class="subheading"><span>$!item.headline</span><svg class="lp-icon" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="/webdav/files/system/svg/lp-icons.svg#lp-chevron-right"></use></svg></a>

            $!{item.description}
         </li>
      #end
   #end
</ul>